@charset "utf-8";
/* CSS Document */

*{
	border:0px;
	margin:0px;
	padding:0px;
	}
body {
	background-color: #FFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#2b3f78;
	}
 .boxs {
  padding: 10px;
  position: relative; /* 为右下角图片定位做准备 */
  width: 80%;
  display: flex;
  flex-wrap: wrap; /* 内容随窗口变化自动换行 */
  margin: 0 auto;
}

.left-content {
  display: flex;
  align-items: center;
}

.left-content img {
  width: 90px;
  height: 90px; /* 正方形图片尺寸，可调整 */
  margin-right: 10px;
}

.company-name {
  text-align: center;
  font-family:"华文行楷";
  font-size:35px;
}

.bottom-right-img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  max-width: 25%;
  max-height: 90px;
  width: auto;
  height: auto;
}

/* 媒体查询实现响应式布局 */
@media (max-width: 768px) {
 .left-content img {
    width: 40px;
    height: 40px;
  }
 .company-name {
    font-size: 14px;
  }
 .bottom-right-img {
    max-width: 60px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
 .left-content img {
    width: 30px;
    height: 30px;
  }
 .company-name {
    font-size: 12px;
  }
 .bottom-right-img {
    max-width: 40px;
    max-height: 40px;
  }
}


/**
*首行导航栏
*/	
.run {
			background-color:#2b3f78;
			width:100%;
		}
        nav {
            background-color: #2b3f78;
			width:100%;
			margin: 0 auto;
			position: relative; /* 必须加 */
    		z-index: 9999;      /* 必须加，让导航永远在最上层 */         
		}

        nav ul {
            list-style-type: none;
            display: flex;
            justify-content: space-around;
            flex-wrap: nowrap; /*强制不换行*/
			font-size:24px;
			padding: 0;
			margin: 0;
        }

        nav ul li {
            flex: 1; /* 让所有 li 等分剩余空间，自动缩小 */
            min-width: 0; /* 允许内容被压缩 */
            text-align: center;
        }

        nav ul li a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 8px;
            text-decoration: none;
            white-space: nowrap; /* 文字不换行 */
            overflow: hidden; /* 防止文字溢出 */
        }

        nav ul li a:hover {
            background-color: #ddd;
            color: black;
        }
		
		/* 新增：下拉菜单容器样式 */
        .dropdown {
            position: relative;
        }
        .dropdown-content {
            display: none; /* 默认隐藏 */
            position: absolute;
            top: 100%; /* 紧贴导航栏下方 */
            left: 0;
            width: 100%; /* 宽度和导航栏li一致 */
            background-color: #2b3f78;
            z-index: 999999; /* 确保在最上层 */
        }
        .dropdown-content a {
            font-size: 1.2vw; /* 下拉菜单文字比导航栏小 */
            padding: 10px 4px; /* 内边距适配 */
			overflow: hidden;   
			text-overflow: ellipsis; /* 极端情况才显示省略号，一般不会触发 */
            white-space: nowrap;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.1); /* 可选：分隔线 */
        }
        /* 鼠标悬浮显示下拉菜单 */
        .dropdown:hover .dropdown-content {
            display: block;
        }
        /* 下拉菜单hover效果 */
        .dropdown-content a:hover {
            background-color: #ddd;
            color: black;
        }

        /* 滑动效果的样式 */
       .slider {
            position: relative;
            height: 4px;
            background-color: white;
            transition: left 0.2s ease;
        }
        @media (max-width: 768px) {
          nav ul {
            font-size: 14px; /* 移动端缩小字体 */
          }
          nav ul li a {
            padding: 12px 4px; /* 进一步减小内边距 */
          }
		  /* 下拉菜单移动端文字大小 */
          .dropdown-content a {
            font-size: 1.0vw; /* 比导航栏文字小 */
            padding: 8px 3px;
          }
        }
        
        @media (max-width: 480px) {
          nav ul {
            font-size: 12px; /* 更小屏幕再缩小 */
          }
		  /* 下拉菜单超小屏文字大小 */
          .dropdown-content a {
            font-size: 0.9vw;
            padding: 6px 2px;
          }
        }

.pro {
	width:100%;
	height:390px;
	margin-bottom:20px;
	background-color:#F8F8F8;
	background:url(../image/产品中心/首页/未标题-3.jpg) no-repeat;
	background-size: cover; /*将元素填满同时保证图片尺寸不变形*/
	background-position: 50%;
}


/**
*当前位置
*/
.toptitle .place {
	font-size:14px;
	color:#333;
	width:90%;
	height:35px;
	margin-left:50px; 
	margin-top: 10px;
	margin-bottom:10px;
	float:left;
	border-bottom:1px dashed #ccc;
	padding-top:8px; 
	padding-left:5px;
	box-sizing: border-box;
}
.toptitle .place a:link,.toptitle .place a:visited {
	color:#333;
	text-decoration:none;
}
.toptitle .place a:hover,.toptitle .place a:active {
	color:#333;
	text-decoration:none;
}




/**
*产品展示
*/
.form {
	margin-top: 10px;
	margin-bottom:20px;
	float:left;
	width: 100%; 
}
/* 先设置根元素字体（rem基准），移动端自动缩放 */
html {
  font-size: 16px; /* 基准值 */
  /* 视口宽度<768px时，根字体按比例缩小 */
  @media (max-width: 768px) {
    font-size: calc(12px + (16 - 12) * (100vw - 320px) / (768 - 320));
  }
  @media (max-width: 320px) {
    font-size: 12px;
  }
}


/**
*左侧
*/
.left {
	margin-left:3%; 
	margin-top: 10px;
	float:left;
	width: 15%;	 
}

/**
*左侧导航栏
*/ 
.toptitle .aside-nav{
	margin-top: 10px;
	float:left;
	width: 100%;
	background-color:#ccc;
	color:#000;
}
/* 导航标题 */
.aside-nav .nav-title{
	height: 5vw;
	line-height: 5vw;
	text-align: center;
	font-size: 1.8vw;
	border-bottom: 1px solid #222;
	max-height: 70px; /* 限制最大高度，避免大屏过大 */
  	min-height: 40px; /* 限制最小高度，避免小屏过小 */
}

/* 导航列表 */
/* 父导航 */
.aside-nav .nav-list .parentNav{
	height: 4.5vw; /* 替换70px */
  line-height: 4.5vw; /* 行高自适应 */
  padding: 0 1vw; /* 内边距也用相对单位 */
  font-size: 1.5vw; /* 替换20px */
  max-height: 70px;
  min-height: 35px;
}

.aside-nav .nav-list .parentNav:hover, 
.aside-nav .nav-list .item.active .parentNav{
	background-color: #fff;
	color: #000;
	text-decoration:none;
}

.aside-nav .nav-list .parentNav i{
	font-size: 20px;
}
 
.aside-nav .nav-list .parentNav i:last-child{
	float: right;
}

.aside-nav .nav-list .parentNav a{
	color: #000;
}
 
.aside-nav .nav-list .parentNav a:link,
.aside-nav .nav-list .parentNav a:visited{ 
	color:#000;
	text-decoration:none;
}

.aside-nav .nav-list .parentNav a:hover,
.aside-nav .nav-list .parentNav a:active{ 
	color:#000;
	text-decoration:none;
}



/* 子导航 */
.aside-nav .nav-list .item.active .subNav{
	display: block;
}

.aside-nav .nav-list .subNav{
	display: none;
}

.aside-nav .nav-list .subNav li a {
	color: #000;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	height: 3vw;
	line-height: 3vw;
	padding-left: 4vw;
	font-size:1.2vw;
	text-decoration:none;
	max-height: 40px;
  	min-height: 30px;
}

.aside-nav .nav-list .subNav li a:link,
.aside-nav .nav-list .subNav li a:visited{ 
	text-decoration:none;
}
.aside-nav .nav-list .subNav li a:hover,
.aside-nav .nav-list .subNav li a:active{
	background-color: #fff;
	text-decoration:none;
}


/**
*联系我们
*/
.left .ser_left {
	width:100%;
	float:left;
	margin-top: 10px;
	border:2px solid #ccc;
}
.left .ser_left .ser_title {
	width::100%;
	height:6vw;
	max-height: 80px;
  min-height: 50px;
	background-color:#0033CC;
	text-align:center;
}
.left .ser_left .ser_title h2 {
	font-size:1.5vw;
	color:#fff;
	padding-top:1.5vw;
}
.left .ser_left .t1 {
	width::100%;
	background-color:#fff;
	text-align:left;
	border-bottom:1px solid #ccc;
}
.left .ser_left .t1 p {
	font-size:1.3vw;
	color:#0033cc;
	padding:1vw 0 1vw  3%;
	line-height:1.2;
 }
.left .ser_left .t2 {
	width::100%;
	background-color:#fff;
	text-align:left;
	border-bottom:1px solid #ccc;
}
.left .ser_left .t2 p {
	font-size:1.3vw;
	color:#000;
	padding:1vw 0 1vw  3%;
	line-height:1.2;
}
.left .ser_left .t2 .left {
	width:40%;
	text-align:center;
	margin-top:8px;
	margin-bottom:15px;
}
.left .ser_left .t2 .left i {
	color:#333;
	font-size:1vw;
}
.left .ser_left .t2 .right {
	width:45%;
	margin-top:5%;
	line-height:1.1;
}
.left .ser_left .t2 .right i {
	font-size:1.2vw;
} 




/**
*主体部分
*/
 
        /* 右侧内容区 */
        .main-content {
             width: calc(80% - 20px); /* 原80%宽度，减去左侧间距，避免贴边 */
  box-sizing: border-box; /* 内边距/边框计入宽度 */
  overflow: hidden; /* 防止容器内元素溢出 */
  padding: 0 10px; /* 增加内边距，优化显示 */
         }
         .product-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
				margin-top:10px;
	margin-left:20px;
	margin-bottom:20px;

        }
        /* 轮播图容器 */
        .carousel-container {
            width: 100%;
            max-width: 55%;
            border: 1px solid #ccc;
            overflow: hidden;
            position: relative;
 			height:auto;
			/* 新增：小屏时轮播图占满宽度 */
		  	@media (max-width: 768px) {
				max-width: 100%; /* 平板以下轮播图占满 */
		  	}
        }
        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
         }
        .carousel-item {
            min-width: 100%;
        }
        .carousel-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        /* 轮播控制按钮 */
        .carousel-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
        }
        .carousel-btn {
            width: 2.5vw;
            height: 4vw;
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8vw;
            transition: background-color 0.3s;
			/* 限制按钮最小/最大尺寸，避免过小/过大 */
		  	min-width: 25px;
		  	min-height: 35px;
		  	max-width: 40px;
		  	max-height: 60px;
        }
        .carousel-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        .carousel-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .carousel-dot {
            width: 1vw;
            height: 1vw;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
			min-width: 8px;
  			min-height: 8px;
  			max-width: 15px;
  			max-height: 15px;
        }
        .carousel-dot.active {
            background-color: #fff;
        }
        /* 产品信息区 */
        .product-info {
            flex: 1;
            min-width: 300px;
        }
        .product-info h1 {
            font-size: 3vw;
			line-height: 1.2;
			border-bottom: 1px dashed #ddd;
            padding-bottom: 10px;
			max-font-size: 40px; /* 限制最大字号 */
            min-font-size: 18px; /* 限制最小字号 */
           	@media (max-width: 768px) {
         		font-size: 2.5vw;
  			}
  			@media (max-width: 480px) {
    		font-size: 5vw; /* 小屏加大相对占比 */
  			}
        }
        .product-feature, .product-application {
            margin-bottom: 1.5vw;
            line-height: 1.6;
            min-font-size: 12px;
			border-bottom: 1px dashed #ddd;
			@media (max-width: 480px) {
				font-size: 3vw;
			  }        
		}
        .service-title {
            font-weight: bold;
            margin: 20px 0 10px;
            font-size: 1.8vw;
			min-font-size: 14px;
		  	@media (max-width: 480px) {
				font-size: 3.5vw;
		  	}
        }
        .service-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .service-tag {
            background-color: #28a745;
            color: #fff;
            padding: 0.5vw 1.2vw;
            border-radius: 0.4vw;
            font-size: 1.5vw;
			min-font-size: 12px;
		}
        .hotline-bar {
            display: flex;
            align-items: center;
            background-color: #0066ff;
            color: #fff;
            font-size: 1.8vw;
            border-radius: 2vw;
            overflow: hidden;
			width:90%;
			margin-bottom:10px;
			@media (max-width: 480px) {
				width: 100%;
				font-size: 3vw;
			  }
        }
        .wechat-icon {
            width: 4vw;
            height: 4vw;
            background-color: #2dcc70;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
			min-width: 30px;
  			min-height: 30px;
  			max-width: 50px;
  			max-height: 50px;
        }
        .wechat-icon i {
            font-size: 2vw;
			min-font-size:16px;
        }
        .hotline-text {
            flex: 1;
            padding: 1vw 0;
        }		
         /* 按钮样式 - 统一定义，避免重复 */
        .action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .action-btn {
            padding: 1vw 2vw;
            border: 2px solid transparent;
            border-radius: 0.4vw;
            font-size: 1.8vw;
            cursor: pointer;
            color: #fff;
            transition: all 0.3s ease;
            position: relative; /* 关键：让弹窗相对于按钮定位 */
            z-index: 1; /* 确保按钮层级低于弹窗 */
			min-font-size: 12px;
		  	min-width: 120px;
		  	@media (max-width: 480px) {
				width: 100%;
				font-size: 3vw;
				padding: 2vw 0;
		  	}
        }
        /* 免费获取报价按钮 */
        .quote-btn {
            background-color: #007bff;
        }
        .quote-btn:hover {
            background-color: #0056b3;
            border-color: #004085;
        }
        /* 立即咨询按钮 */
        .consult-btn {
            background-color: #28a745;
        }
        .consult-btn:hover {
            background-color: #218838;
            border-color: #1e7e34;
        }
        /* 二维码弹窗样式 - 优化定位和显示 */
        .qrcode-popup {
            position: absolute;
            bottom: 100%; /* 弹窗在按钮上方 */
            left: 50%;
            transform: translateX(-50%) translateY(-10px); /* 水平居中，向上偏移10px */
            background-color: #fff;
            padding: 1.5vw;
            border-radius: 0.8vw;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            display: none; /* 默认隐藏 */
            z-index: 9999; /* 最高层级，不被遮挡 */
            text-align: center;
            border: 1px solid #eee;
            width: 18vw; /* 固定宽度，避免变形 */
			min-width: 120px;
  			max-width: 200px;
        }
        /* 弹窗三角箭头 */
        .qrcode-popup::after {
            content: "";
            position: absolute;
            top: 100%; /* 箭头在弹窗底部 */
            left: 50%;
            transform: translateX(-50%);
            border-width: 10px 10px 0;
            border-style: solid;
            border-color: #fff transparent transparent;
        }
        /* 二维码图片样式 */
        .qrcode-popup img {
            width: 15vw;
            height: 15vw;
            margin-bottom: 1vw;
            border: 1px solid #eee; /* 便于观察是否加载 */
            object-fit: cover; /* 防止图片变形 */
			min-width: 100px;
			min-height: 100px;
			max-width: 160px;
			max-height: 160px;
        }
        /* 弹窗文字样式 */
        .qrcode-text {
            font-size: 1.5vw;
            color: #333;
            line-height: 1.5;
            font-weight: 500;
			min-font-size: 12px;
		  @media (max-width: 480px) {
			font-size: 2.5vw;
		  }
        }
        /* 鼠标悬浮按钮时显示弹窗 - 关键触发逻辑 */
        .action-btn:hover .qrcode-popup {
            display: block;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
                margin-bottom: 20px;
            }
            .action-buttons {
                flex-direction: column;
            }
            .action-btn {
                width: 100%;
            }
            .qrcode-popup {
                bottom: auto;
                top: 100%; /* 移动端弹窗在按钮下方 */
                transform: translateX(-50%) translateY(10px);
            }
            .qrcode-popup::after {
                top: 0;
                border-width: 0 10px 10px;
                border-color: transparent transparent #fff;
            }
        }


.main .productContent {
	width:95%;
	margin-top:1vw;
	float:left;
	margin-left:2.5%;
	border:2px solid #CCC;
}
.productContent .h4 {
	text-align:center;
	background-color:#09F;
	font-size:3vw;
	color:#FFF;
	padding: 1.5vw;
	max-font-size: 45px;
  min-font-size: 18px;
}
.image-container {
  display: flex; /* 使用flex布局，使内部图片横向排列 */
  width: 100%; /* 方块宽度占满父容器 */
  max-width: 100%; /* 可设置最大宽度，避免图片过大 */
  margin: 0vw auto;
  background-color: #f0f0f0; /* 为方块设置背景色，便于查看效果 */
}

.image-container img {
  flex: 1; /* 两张图片平分容器宽度 */
  object-fit: cover; /* 图片等比缩放并覆盖容器，避免变形 */
  height: auto; /* 保持图片高度自动适应宽度 */
  max-width: 100%; /* 保持图片宽度自动适应高度 */
 }
.productContent .h3 {
	float:left;
	width:100%;
	margin-top:50px;
}
 
.productContent h3 {
	margin-top:30px ;
	margin-bottom:10px;
	text-align:left;
 	color:#1a1a1a;
 	padding-top:15px;
	padding-bottom:10px;
	display:block;
	font-size: 2.5vw; /* 替换30px */
  line-height: 1.2;
  min-font-size: 16px;
}
 
.productContent h3 i {
	font-size:1.5vw;
	color:#dedede;
	text-align:left;
	display:block;
	text-transform:uppercase;
	min-font-size: 12px;
}
.productContent p {
	font-size:1.8vw;
	line-height:1.5;
}
.productContent p img {
	width:100%;
	height: 100%;
	min-font-size: 12px;
}





/**
*底栏一
*/
 .contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #009; /* 蓝色背景色 */
    color: white;
    padding: 20px;
}
.info-item {
    display: flex;
    align-items: center;
}
.icon-location,
.icon-phone,
.icon-mail {
    font-size: 24px; /* 图标大小 */
    margin-right: 10px;
}
.info-text span {
    margin-right: 5px;
	font-size:18px;
}
.info-text p {
    margin-right: 5px;
	color:#FFF;
	font-size:20px;
}

/* 媒体查询实现响应式 */
@media (max-width: 768px) {
   .contact-info {
        flex-direction: column; /* 小屏幕时垂直排列 */
    }
   .info-item {
        margin-bottom: 10px;
    }
}

/**
*底栏二
*/
 
.toptitle .dlh {
	width: 100%;
	height:80px;
	padding-top: 40px;
	background-color:#333; 
	float:left;
	text-align:center;
	margin-top:0px;
}
.dle .menuitems { 
	height: 60px;
	text-align:center;
	font-weight:bold;
	}
ul {
	list-style-type:none;
	}
.dlh .menuitems li {
	padding:0px 22px;
	font-size:25px;
	display:inline;
	}
.dlh .menuitems li a:link,.dlh .menuitems li a:visited {
	color:#FFF;
	text-decoration:none;
	}
.dlh .menuitems li a:hover,.dlh .menuitems li a:active {
	color:#fff;
	text-decoration:none;
	}



/**
*底栏三
*/
.footer {
	 
	height:70px;
	background-color:#999;
	padding-top:40px;
	padding-left:34px;
	font-size:16px;
	color:#333;
	text-align:center;
	border-top:2px solid #000;
	clear:both;
}